ÄúµÄλÖãºÑ°ÃÎÍøÊ×Ò³£¾±à³ÌÀÖÔ°£¾VBScript£¾VBScript


objects constants operators statements functions properties methods






FUNCTION:  Space( )

Space(Number)

The Space function creates a string with the specified number of blank spaces.

Note that HTML will only show one blank space on the same line.

Code:
<% ="Line above space." %>
<% =Space(13) %>
<% ="Line below space." %>

Output:
Line above space.

Line below space.